CODE 11. Best Time to Buy and Sell Stock II

版权声明:本文为博主原创文章,转载请注明出处,谢谢!

版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2013/09/15/2013-09-15-CODE 11 Best Time to Buy and Sell Stock II/

访问原文「CODE 11. Best Time to Buy and Sell Stock II

Say you have an array for which the ith element
is the price of a given stock on day i.
Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell
the stock before you buy again).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public int maxProfit(int[] prices) {
// Start typing your Java solution below
// DO NOT write main() function
if (null == prices || prices.length <= 1) {
return 0;
}
int[] diff = new int[prices.length];
int max = 0;
for (int i = 1; i < prices.length; i++) {
diff[i] = prices[i] - prices[i - 1];
}
for (int i = 1; i < diff.length; i++) {
if (diff[i] > 0) {
max += diff[i];
}
}
return max;
}
Jerky Lu wechat
欢迎加入微信公众号